home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / atr.arc / ATR.DOC < prev   
Text File  |  1986-06-04  |  1KB  |  50 lines

  1. ATR
  2. ______________________________________________________________________________
  3.  
  4. Purpose:    Permits changing or resetting any or all file atribute bits.
  5.  
  6. Format:        ATR [d:][path]filename[.ext] [x...]
  7.  
  8. Remarks:    [x...] is a list of atributes to be set, according to the
  9.         following list:
  10.  
  11.             x        ATTRIBUTE
  12.  
  13.          [blank]    Reset all bits to OFF.
  14.  
  15.             r        Set to READ ONLY.
  16.                 Prevents writing to file.
  17.  
  18.             w        (write) Turn off READ ONLY
  19.                 Resumes standard read/write status.
  20.  
  21.             h        Set to HIDDEN
  22.                 Does not appear in std. directories & cannot
  23.                 be found by normal file searches.
  24.  
  25.             v        (visible) Turn off HIDDEN.
  26.  
  27.             s        Set to SYSTEM.
  28.                 Does not appear in std. directories & cannot
  29.                 be found by normal file searches.
  30.  
  31.             n        (normal) Turn off SYSTEM.
  32.  
  33.             a        Set to ARCHIVE needed (written to since last
  34.                 reset of this bit)
  35.  
  36.             b        (backed-up) Turn off ARCHIVE (as is done by
  37.                 DOS Backup Utility)
  38.  
  39.         Attributes to be set are listed without spaces or punctuation
  40.         between, such as "ATR A:COMMAND.COM RB". If contradictory
  41.         attributes are listed, the last one appearing takes precedence.
  42.         A blank (space) terminates the list, and invalid atribute codes
  43.         will be ignored, as if not present, EXCEPT one invalid atrib-
  44.         ute and no valid atributes will NOT act like a blank, but in-
  45.         stead will leave the current atributes unchanged.
  46.  
  47.         Global or ambiguous filespecs may be used, such as:
  48.             "ATR B:*.??M HS"
  49. 
  50.